summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx
diff options
context:
space:
mode:
authorKimdonghan <dh32110@gmail.com>2025-12-03 18:27:43 +0900
committerKimdonghan <dh32110@gmail.com>2025-12-03 18:27:43 +0900
commit2f02e9ea125c3ec42afac84ec903767930335dd3 (patch)
tree70f8e0ee57f868d29e7a338db49c5cf228468376 /app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx
parent7b2718ba47b69ed4b1bf20977cebe93393191839 (diff)
(김동한) 메뉴명과 화면 내 h태그 일치 작업
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx b/app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx
index 5c96c85d..0949d9a0 100644
--- a/app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx
+++ b/app/[lng]/evcp/(evcp)/(sales)/budgetary-tech-sales-top/page.tsx
@@ -7,14 +7,17 @@ import { RFQListTable } from "@/lib/techsales-rfq/table/rfq-table"
import { type SearchParams } from "@/types/table"
import * as React from "react"
import { InformationButton } from "@/components/information/information-button"
+import { useTranslation } from "@/i18n"
interface HullRfqPageProps {
+ params: Promise<{lng: string}>
searchParams: Promise<SearchParams>
}
export default async function HullRfqPage(props: HullRfqPageProps) {
// searchParams를 await하여 resolve
const searchParams = await props.searchParams
-
+ const {lng} = await props.params
+ const {t} = await useTranslation(lng, 'menu')
// 해양 TOP용 파라미터 파싱
const search = searchParamsTopCache.parse(searchParams);
const validFilters = getValidFilters(search.filters);
@@ -35,7 +38,7 @@ export default async function HullRfqPage(props: HullRfqPageProps) {
<div>
<div className="flex items-center gap-2">
<h2 className="text-2xl font-bold tracking-tight">
- 기술영업-해양 TOP Budgetary RFQ
+ {t('menu.tech_sales.budgetary_top')}
</h2>
<InformationButton pagePath="evcp/budgetary-tech-sales-top" />
</div>